home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
LANG
/
SCHEME
/
GNU
/
SCM4E1
/
!Scm
/
scm
/
ScmInit
< prev
next >
Wrap
Text File
|
1994-07-31
|
533b
|
23 lines
;;; ScmInit - user startup files.
;;; put anything in here if you want it executed on every startup.
;;; note that SCM does not echo the fact it is loading this...
(define (ed fname)
(system (string-append "vi <scm$dir>." fname))
)
;
; Set the gfx origin then call the turtle setup to point it due north,
; and move the gfx pen to where we asked the origin to be.
;
(define (go)
(begin
(mode 12)
(graphics-origin! 320 200)
(init-turtle 320 200 90)
))
; comment this out if you like.
(display "Loaded ScmInit.")(newline)